home *** CD-ROM | disk | FTP | other *** search
/ Aminet 44 / Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso / Aminet / comm / tcp / dhcpd.lha / dhcpd.conf.example < prev    next >
Text File  |  1999-10-10  |  819b  |  32 lines

  1. # dhcpd.conf
  2. #
  3. # Configuration file for ISC dhcpd
  4. #
  5.  
  6. # Range addresses for unknowns hosts
  7. subnet 192.168.0.0 netmask 255.255.255.0 {
  8.   range 192.168.0.6 192.168.0.10;
  9.   server-name "a4000";
  10.   option domain-name-servers 194.149.160.9, 194.149.160.1;
  11.   option domain-name "home";
  12.   option routers 192.168.0.2;
  13.   option subnet-mask 255.255.255.0;
  14.   option broadcast-address 192.168.0.2;
  15.   default-lease-time 3600;
  16.   max-lease-time 7200;
  17. }
  18.  
  19. # Address for a specific host
  20. host pc-nt {
  21.   hardware ethernet 00:40:05:33:08:07;
  22.   fixed-address 192.168.0.3;
  23.   server-name "a4000";
  24.   option domain-name-servers 194.149.160.9, 194.149.160.1;
  25.   option domain-name "home";
  26.   option routers 192.168.0.2;
  27.   option subnet-mask 255.255.255.0;
  28.   option broadcast-address 192.168.0.2;
  29.   default-lease-time 36000;
  30.   max-lease-time 72000;
  31. }
  32.